Micron Document
Fox's Git Mirrors

Node / RFnexus / code.git / commits / 350ec59

Commit 350ec5903765c64ea6c4578c7e0ac684179b3a59


Parents : 019adfa
Author : Ahmet Inan <inan@aicodix.de>
Date : 2024-02-22T11:15:44+01:00

use a higher order but less loops

Changes

2 files changed, 6 insertions(+), 6 deletions(-)


Diff

diff --git a/tests/osd_regression_test.cc b/tests/osd_regression_test.cc
index dee1f24..020b491 100644
--- a/tests/osd_regression_test.cc
+++ b/tests/osd_regression_test.cc
@@ -18,14 +18,14 @@ int main()
{
#if 1
// BCH(127, 64) T=10
- const int O = 2;
+ const int O = 4;
const int N = 127;
const int K = 64;
const int NR = 20;
- const int loops = 1000;
+ const int loops = 10;
const double low_SNR = -5;
const double high_SNR = 5;
- const double QEF_SNR = 1.5;
+ const double QEF_SNR = -1.5;
typedef CODE::GaloisField<7, 0b10001001, uint8_t> GF;
std::initializer_list<int> minpols {
0b10001001, 0b10001111, 0b10011101,

diff --git a/tests/osld_regression_test.cc b/tests/osld_regression_test.cc
index 2f33133..444cbbd 100644
--- a/tests/osld_regression_test.cc
+++ b/tests/osld_regression_test.cc
@@ -20,14 +20,14 @@ int main()
const bool oracle = true;
#if 1
// BCH(127, 64) T=10
- const int O = 2;
+ const int O = 4;
const int N = 127;
const int K = 64;
const int NR = 20;
- const int loops = 1000;
+ const int loops = 10;
const double low_SNR = -5;
const double high_SNR = 5;
- const double QEF_SNR = 1.5;
+ const double QEF_SNR = -2;
typedef CODE::GaloisField<7, 0b10001001, uint8_t> GF;
std::initializer_list<int> minpols {
0b10001001, 0b10001111, 0b10011101,

Served by rngit 1.4.1 - Generated in 0.03s